home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / ptv1n4.arc / L4.ASM < prev    next >
Assembly Source File  |  1990-09-13  |  216b  |  12 lines

  1.  
  2.  
  3.      OR   EAX,ShiftTable[EBX*4]    ;look up the bit and OR it in
  4.           :
  5. ShiftTable     LABEL     DWORD
  6. BIT_PATTERN=0001H
  7.      REPT 32
  8.      DD   BIT_PATTERN
  9. BIT_PATTERN=BIT_PATTERN SHL 1
  10.      ENDM
  11.  
  12.